home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / tos / progut~1 / stdwin.zoo / vt / vtsend.c < prev    next >
Encoding:
C/C++ Source or Header  |  1989-10-17  |  203 b   |  14 lines

  1. /* Default vtsend function */
  2. /* $Header: vtsend.c,v 1.1 88/06/20 22:35:51 guido Exp $ */
  3.  
  4. #include "vtimpl.h"
  5.  
  6. void
  7. vtsend(vt, text, len)
  8.     VT *vt;
  9.     char *text;
  10.     int len;
  11. {
  12.     vtansiputs(vt, text, len);
  13. }
  14.